Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all non-major dependencies #431

Merged
merged 1 commit into from
Jul 18, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 13, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@vitest/coverage-v8 (source) 2.0.2 -> 2.0.3 age adoption passing confidence devDependencies patch
argocd 2.11.4 -> 2.11.5 age adoption passing confidence patch
kubectl 1.30.2 -> 1.30.3 age adoption passing confidence patch
prettier (source) 3.3.2 -> 3.3.3 age adoption passing confidence devDependencies patch
typescript-eslint (source) 7.16.0 -> 7.16.1 age adoption passing confidence devDependencies patch
vitest (source) 2.0.2 -> 2.0.3 age adoption passing confidence devDependencies patch

Release Notes

vitest-dev/vitest (@​vitest/coverage-v8)

v2.0.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
argoproj/argo-cd (argocd)

v2.11.5

Compare Source

Quick Start

Non-HA:
kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/v2.11.5/manifests/install.yaml
HA:
kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/v2.11.5/manifests/ha/install.yaml

Release Signatures and Provenance

All Argo CD container images are signed by cosign. A Provenance is generated for container images and CLI binaries which meet the SLSA Level 3 specifications. See the documentation on how to verify.

Upgrading

If upgrading from a different minor version, be sure to read the upgrading documentation.

Changelog

Bug fixes
Other work

Full Changelog: argoproj/argo-cd@v2.11.4...v2.11.5

kubernetes/kubernetes (kubectl)

v1.30.3

Compare Source

prettier/prettier (prettier)

v3.3.3

Compare Source

diff

Add parentheses for nullish coalescing in ternary (#​16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);
Add parentheses for decorator expressions (#​16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@​(foo`tagged template`)
class X {}

// Prettier 3.3.2
@​foo`tagged template`
class X {}

// Prettier 3.3.3
@​(foo`tagged template`)
class X {}
Support @let declaration syntax (#​16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

@​let name = 'Frodo';

<h1>Dashboard for {{name}}</h1>
Hello, {{name}}

For more details, please refer to the excellent blog post by the Angular Team: Introducing @​let in Angular.

We also appreciate the Angular Team for kindly answering our questions to implement this feature.

typescript-eslint/typescript-eslint (typescript-eslint)

v7.16.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@2na2-p 2na2-p bot enabled auto-merge July 13, 2024 16:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4f39d57 to 677a15f Compare July 15, 2024 19:25
@renovate renovate bot changed the title chore(deps): update dependency prettier to v3.3.3 chore(deps): update all non-major dependencies Jul 15, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 677a15f to 2d46e07 Compare July 17, 2024 11:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2d46e07 to d9c7263 Compare July 17, 2024 13:34
@2na2-p 2na2-p bot merged commit 6c83ea0 into main Jul 18, 2024
8 checks passed
@2na2-p 2na2-p bot deleted the renovate/all-minor-patch branch July 18, 2024 01:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant